*{
    font-family: "Manrope", sans-serif;
  
}
body{
  height: max-content;
  width: 100%;
}
.row{
  margin: 0px !important;
}
.container-fluid{
  padding: 0px 40px !important;
}
.full{
  padding: 0px 0px !important;
}
nav{
    padding-top: 25px 0px !important;
}
.navbar-nav{
  margin: 0rem 0rem !important;
}
.hero-nav{
  padding: 5px 0px !important;
  /* align-items: start !important; */
  /* padding-top: 1.5rem !important; */
}
header{
  background-color: white;
}
.navbar-nav {
  margin-bottom: 0px !important;
}


.navbar-toggler {
  border: none;
  font-size: 1.2rem;
  }
  
  .navbar-toggler:focus, .btn—ctose:focus{
  box-shadow:none;
  outline: none;
  }
  .nav-link {
  color: rgb(0, 0, 0);
  font-weight:500;
  position: relative;
  text-align: center;
  /* margin-left: 42px  ! important; */
  }
  .nav-link:hover{
      /* color: #ffffff; */
  }
  .nav-link::before{
      content:"";
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background-color: rgb(253, 253, 253);
      visibility: hidden;
      transition: 0.3s ease-in-out;
  }
  .nav-link:hover::before, .nav-link.active::before{
      visibility: visible;
      width: 100%;
  }
  /* Fixed navbar with glassmorphism effect */

   a{
      text-decoration: none !important;
      /* color: black; */
  }  
  .nav-item{
    padding: 5px 15px;
    border-radius: 7px;
  }
  /* .nav-item:hover{
   background: blue;
   color: white !important;
  } */

  /* herosection section csss  */
  
 
        .hero-section {
            text-align: center;
            padding: 5px 0px 5px 0px;
        }

        .hero-section h1 {
            font-size: 5rem !important;
            font-weight: 500 !important;
            /* font: bold; */
            /* font-size: 110px; */
            line-height: 1.1 !important;
            padding: 0rem 0rem !important;
        }
        .hero-image {
            max-width: 100%;
            height: auto; 
            margin-bottom: 5px;
            /* width: 480px;
            height: 430px; */
        }
        @media (max-width: 768px) {
          .hero-section h1 {
              font-size: 2.6rem ! important;
          }
          hero-section p {
            font-size: 1.2rem;
            padding: 0.5rem;
        }
        .hero-buttons{
          padding: 2rem;
        }
      }
      
   

    /* hero section's buttton css  */

  .call-btn{
    padding: 12px 80px !important;
    /* border: 1px solid black !important; */
    /*border-radius: 0px !important;*/
    border-radius: 980px !important;
    background-image: linear-gradient(to right, #0400CE,#8310AC);
    color: white !important;

    
  }
  
  .call-btn:hover{
    padding: 12px 80px !important;
    border: 1px solid black !important;
    /*border-radius: 0px !important;*/
    border-radius: 980px !important;
    background-image: linear-gradient(to right, white,white);
    
    color: black !important;

    
  }
  .plan-btn{
    padding: 15px 80px !important;
    border: 1px solid black !important;
    border-radius: 0px !important;
    
  }
  .plan-btn:hover{
    padding: 15px 80px !important;
    /* border: 1px solid black !important; */
    border-radius: 0px !important;
    background-image: linear-gradient(to right, #0400CE,#8310AC);
    color: white !important;

  }

/* three images sections css  */


.three-img{
    padding-top: 6rem !important;
}

.three-img {
    position: relative;
    overflow: hidden;
  }
  
  .three-img::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px; /* Adjust height as needed */
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    pointer-events: none; /* Ensure it doesn't interfere with clicks */
  }
  
  /* three images animation sections css  */
  /* Add hover animations to the images in the section */
.three-img img {
  transition: transform 0.3s ease;
}

/* Scale and add shadow on hover */
.three-img img:hover {
  transform: scale(1.1);
  filter: brightness(1) contrast(1);
}

/* Staggered delay for each image */
.three-img .col-md-4:nth-child(1) img {
  transition-delay: 0.3s;
}
.three-img .col-md-4:nth-child(2) img {
  transition-delay: 0.3s;
}
.three-img .col-md-4:nth-child(3) img {
  transition-delay: 0.3s;
}
 



  /* four cards section css  */

  .card {
    border: 1px solid #e0e0e0; /* Light border for the card */
    border-radius: 10px; /* Rounded corners */
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    /* text-align: center; */
    height: 450px !important;
  }
  .card img {
    width: auto;
    height: 140px;
    margin-bottom: 15px;
    margin-top: auto !important;
  }
  .card h5{
    font-size: 2rem !important;
    font-weight: 500 !important;
    line-height: 1.1;
  }
  .card p{
    font: 2rem !important;
    line-height: 1.4;
    padding: 1rem 0rem;
  }
  .section-title {
    font-weight: 500;
    /* text-align: center; */
    margin-bottom: 10px;
  }
  .section-subtitle {
    /* text-align: center; */
    color: #555;
    margin-bottom: 40px;
  }
.four-cards{
padding: 7rem 0.5rem !important;
}
/* four cards css animation  */

 /* General Animations for Cards */
.four-cards .card {
  transform: translateY(50px);
  opacity: 0;
  animation: slideIn 1s ease-out forwards;
}

/* Add delay for each card */
.four-cards .col-12:nth-child(1) .card {
  animation-delay: 0s;
}
.four-cards .col-12:nth-child(2) .card {
  animation-delay: 0.2s;
}
.four-cards .col-12:nth-child(3) .card {
  animation-delay: 0.4s;
}
.four-cards .col-12:nth-child(4) .card {
  animation-delay: 0.6s;
}

/* Slide-in Animation Keyframes */
@keyframes slideIn {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Hover Animation for Cards */
.four-cards .card:hover {
  transform: scale(1.05) translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Floating Animation for Images */
.four-cards .card img {
  animation: float 3s ease-in-out infinite;
}

/* Floating Animation Keyframes */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Optional: Add smooth transitions */
.four-cards .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.four-cards .card img {
  transition: transform 0.3s ease;
}





   
  /* saly image section csss  */

  .centered-section-1 {
    text-align: center; /* Center-align everything */
    margin-top: 50px; /* Add some space above */
  }
  .centered-section-1 img {
    width: 220px !important;
    height: auto;
    margin-bottom: 20px; /* Space below the image */
  }
  .centered-section-1 h2 {
    font-weight: 500; /* Bold heading */
    font-size: 3rem !important;
    line-height: 1 !important;
    margin-bottom: 1rem; /* Space below heading */
  }
  .centered-section-1 p {
    color: #555; /* Light text color */
    font-size: 1.4rem !important;
    font-weight: 400;
    line-height: 1.4;
  }


  /* black four cards css  */

  .custom-card {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    border-radius: 12px; /* Rounded corners */
    padding: 20px; 
    /* text-align: center;  */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    transition: transform 0.3s ease; /* Hover animation */
    height: 430px !important;
    margin: 4rem 0rem !important;
  }
  .custom-card:hover {
    transform: translateY(-10px); /* Raise card on hover */
  }
  .custom-icon {
    /* font-size: 30px;  */
    margin-bottom: 15px; /* Spacing below the icon */
  }
  .custom-card img{
    margin-top: 5rem;
  }
  .custom-card h2{
  font-weight: 500; /* Bold heading */
  font-size: 2.5rem !important;
  line-height: 1.2 !important;
  margin-bottom: 1rem; /* Space below heading */
  }

  .custom-card p{
   padding: 1rem 0rem !important;
  }
  .custom-card img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .custom-card img:hover {
    transform: translateY(-10px); /* Floating effect */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Add shadow effect */
  }
  .custom-card img {
    animation: float 3s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  .centered-section-1 img {
    animation: float 3s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  
  
/* four black cards animation css code   */

/* Slide-in Animation CSS */
/* @keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

/* Animation for each card */
/* .four-cards-black .custom-card {
  animation: slideIn 0.8s ease-out;
  animation-delay: calc(var(--card-index, 0) * 0.2s);
  animation-fill-mode: backwards;
} */

/* Default Card Styles */
/* .four-cards-black .custom-card { */
  /* background-color: black; */
  /* color: white; */
  /* padding: 20px; */
  /* border-radius: 8px; */
  /* text-align: center; */
  /* transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; */
/* } */

/* Hover Effect - Rotate and Scale */
/* .four-cards-black .custom-card:hover { */
  /* transform: scale(1.1) rotate(1deg); */
  /* box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3); */
/* } */

/* Container Styling */
/* .four-cards-black .container-fluid { */
  /* overflow: hidden; */
/* } */

/* Apply Index for Animation Delays */
/* .four-cards-black .col-lg-3:nth-child(1) .custom-card {
  --card-index: 0;
} */
/* .four-cards-black .col-lg-3:nth-child(2) .custom-card {
  --card-index: 1;
}
.four-cards-black .col-lg-3:nth-child(3) .custom-card { */
  /* --card-index: 2; */
/* }
.four-cards-black .col-lg-3:nth-child(4) .custom-card {
  --card-index: 3;
} */







/* saly image section csss  */

.centered-section-2 {
  text-align: center; /* Center-align everything */
  margin-top: 7rem !important; /* Add some space above */
}
.centered-section-2 img {
  width: 80px !important;
  height: auto;
  /* margin-bottom: 4rem 0rem !important;  */
}
.centered-section-2 h2 {
  font-weight: 500; /* Bold heading */
  font-size: 2.5rem !important;
  line-height: 1.2 !important;
  margin-top: 5rem !important; /* Space below heading */
}
/* .centered-section-2 p {
  color: #555; 
  font-size: 1.4rem !important;
  font-weight: 400;
  line-height: 1.4;
} */

    /* second last section*/


    .centered-section {
        padding: 20px 20px;
        text-align: center;
      }
  
      .centered-section h2 {
        font-weight: 600;
        font-size: 2.4rem;
        line-height: 1.3;
      }
  
      .centered-section p {
        font-size: 1rem;
        color: #6c757d;
        margin-bottom: 2.5rem;
  
      }
  
      .centered-section img {
        margin-top: 5rem;
        width: 80px; /* Adjust as needed */
        height: auto;
      }
      .call-btnbottom{
        padding: 10px 100px !important;
        /* border: 1px solid black !important; */
        /*border-radius: 0px !important;*/
        border-radius: 980px !important;
        background-image: linear-gradient(to right, #0400CE,#8310AC);
        color: white !important;
        margin-top: 2.2rem;
        margin-bottom: 2rem;
     }
      
      .call-btnbottom:hover{
        padding: 10px 100px !important;
        border: 1px solid black !important;
        /*border-radius: 0px !important;*/
        border-radius: 980px !important;
        background-image: linear-gradient(to right, white,white);
        color: black !important;
        
      }

      .list-item {
        display: flex;
        align-items: center;
        font-size: 18px;
        padding: 10px 20px;
      }
      .list-icon {
        font-size: 13px;
        color: #ffffff;
        margin-right: 10px;
        border-radius: 50%;
        padding: 3px 8px;
        background-image: linear-gradient(to right, #0400CE, #8310AC);
      }
      
      .list-container {
        justify-content: center;
        display:flex;
        align-items: center;
        border-bottom: none !important;
        /* padding: 2.5rem 0rem; */
      }




    /* FAQ Section Styling */
     
     
    .faq-section {
        padding: 60px 20px;
        
      }
  
      .faq-heading {
        margin-bottom: 30px;
        font-weight: 700;
        font-size: 2.5rem;
        line-height: 1.5;
      }
  
      .faq-item {
        border-bottom: 1px solid black;
        padding: 15px 0;
      }
  
      .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-weight: 600;
        font-size: 1.3rem;
        line-height: 1.3;
        
        
      }
  
      .toggle-icon {
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: black;
        color: white;
        border-radius: 50%;
        font-size: 20px;
      }
  
      .faq-answer {
        padding-top: 10px;
        font-size: 14px;
        color: #6c757d;
      }
      /* centered section-2 css  */
      .hand-icon{
        
          font-size: 3rem;
            
      }
      footer{
        background-color: black;
        color: white;
      }
     /* ==========  video image css =========  */

     
     .video-preview {
      position: relative;
      display: inline-block;
      cursor: pointer;
      width: 100%;
      max-width: 100%;
      height: 600px; /* Fixed height */
      overflow: hidden;
  }
  
  .video-img,
  .video-bg {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensures content fills container */
      display: block;
  }
  
  .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: rgba(0, 0, 0, 0.7);
      color: white;
      border: none;
      border-radius: 50%;
      padding: 15px 20px;
      font-size: 24px;
      z-index: 10;
  }
  
  .video-text {
      position: absolute;
      top: 60%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      padding: 15px 20px;
      font-size: 24px;
      z-index: 10;
  }

/* Responsive css code  */

@media screen and (max-width: 320px) {
  .container-fluid{
    padding: 0px 5px !important;
  }
  .listgroup{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 16px;
   
  }
  .new-logo {
    width: 125px !important;
    height: 36px !important;
}
  .hero-section h1 {
    font-size: 2rem !important;
    padding: 1rem 0.5rem !important;

}
.lead{
  font-size: 1.2rem !important;
  padding: 10px 0px !important;
}
.breadcrumb-item a{
  font-size: 0.8rem !important;
}
.breadcrumb-item a{
  color: black !important;
  text-decoration: none !important;
}
.breadcrumb-item {
  color:black !important;
}
  a{
  color: black !important;
  /* text-decoration: none !important; */
}
.call-btn {
  
    padding: 10px 16px !important;
    margin-bottom: 0.6rem;
    margin-right: 1rem !important;

}

.plan-btn {
  padding: 10px 35px !important;
  /* margin-bottom: 0.6rem; */
}
.hero-section{
  padding-top:1.6rem !important;

}
.three-img {
  padding-top: 1rem !important;
}
.three-img .col-md-4:nth-child(2) img {
  /* transition-delay: 0.3s; */
  padding: 16px 0px;
}
.centered-section-2 {
  /* text-align: center; */
  margin-top: 4rem !important;
}
.centered-section-2 img {
  width: 57px !important;
  height: auto;
}
.centered-section-2 h2 {
  font-weight: 500;
  font-size: 1.5rem !important;
  line-height: 1.2 !important;
  margin-top: 2rem !important;
}

.four-cards {
  padding: 3rem 0.5rem !important;
}

.card {
  padding: 15px;
  height: 350px !important;
}
.card img {
  width: auto;
  height: 90px;
 
}
.card h5 {
  font-size: 1.6rem !important;
  
}
.centered-section-1 img {
  width: 140px !important;
  height: auto;
  margin-bottom: 33px;
}

.centered-section-1 h2 {
  
  font-size: 2rem !important;
  
}

.centered-section-1 p {
  
  font-size: 1.2rem !important;
  
}
.custom-card h2 {

  font-size: 1.5rem !important;

}
.custom-card {
   
    padding: 18px;

    height: 350px !important;
    margin: 0rem 0rem !important;
}
.custom-card img {
  margin-top: 2rem;
}

.centered-section img {
  margin-top: 2rem !important;
  width: 61px !important;
  height: auto;
}
.centered-section h2 {
  font-weight: 600;
  font-size: 1.5rem !important;
  line-height: 1.3;
}
.list-icon {
  font-size: 10px;
 
  padding: 2px 6px;
  
}

.list-item {
  padding: 1px 9px;
  font-size: 15px !important;
}

.faq-heading {

  font-size: 1.7rem;
 
}
.toggle-icon {
  width: 31px;
  height: 25px;
  background-color: white;
  color: black;

  font-size: 19px;
}
.faq-question {

  font-size: 1.1rem;
  
}
.call-btnbottom{
  padding: 12px 55px !important;
}


}

@media (min-width: 321px) and (max-width: 375px) {

  .container-fluid{
    padding: 0px 5px !important;
  }
  .new-logo {
    width: 125px !important;
    height: 36px !important;
}
  .listgroup{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 14px;
   
  }
  new-logo {
    width: 90px !important;
    height: 55px !important;
}

  .hero-section h1 {
    font-size: 2rem !important;
    padding: 1rem 0.5rem !important;

}
.lead{
  font-size: 1.2rem !important;
  padding: 10px 0px !important;
}
.breadcrumb-item a{
  font-size: 0.8rem !important;
}
.call-btn {
  padding:  10px 25px !important;
 
  /* margin-bottom: 0.6rem; */
  margin-right: 1rem !important;
}

.plan-btn {
  padding: 10px 35px !important;
  /* margin-bottom: 0.6rem; */
}
.hero-section{
  padding-top:1.6rem !important;

}
.three-img {
  padding-top: 1rem !important;
}
.three-img .col-md-4:nth-child(2) img {
  /* transition-delay: 0.3s; */
  padding: 16px 0px;
}
.centered-section-2 {
  /* text-align: center; */
  margin-top: 4rem !important;
}
.centered-section-2 img {
  width: 57px !important;
  height: auto;
}
.centered-section-2 h2 {
  font-weight: 500;
  font-size: 1.5rem !important;
  line-height: 1.2 !important;
  margin-top: 2rem !important;
}

.four-cards {
  padding: 3rem 0.5rem !important;
}

.card {
  padding: 15px;
  height: 350px !important;
}
.card img {
  width: auto;
  height: 90px;
 
}
.card h5 {
  font-size: 1.6rem !important;
  
}
.centered-section-1 img {
  width: 140px !important;
  height: auto;
  margin-bottom: 33px;
}

.centered-section-1 h2 {
  
  font-size: 2rem !important;
  
}

.centered-section-1 p {
  
  font-size: 1.2rem !important;
  
}
.custom-card h2 {

  font-size: 1.5rem !important;

}
.custom-card {
   
    padding: 18px;

    height: 350px !important;
    margin: 0rem 0rem !important;
}
.custom-card img {
  margin-top: 2rem;
}

.centered-section img {
  margin-top: 2rem !important;
  width: 61px !important;
  height: auto;
}
.centered-section h2 {
  font-weight: 600;
  font-size: 1.5rem !important;
  line-height: 1.3;
}
.list-icon {
  font-size: 10px;
  padding: 1px 5px;
}
.call-btnbottom{
  padding: 12px 55px !important;
}

.list-item {
  padding: 1px 9px;
  font-size: 15px !important;
}

.faq-heading {

  font-size: 1.7rem;
 
}
.toggle-icon {
  width: 31px;
  height: 25px;
background-color: white;
color: black;
  font-size: 19px;
}
.faq-question {

  font-size: 1.1rem;
  
}





}


@media (min-width: 376px) and (max-width: 425px) {

  .container-fluid{
    padding: 0px 5px !important;
  }
  .listgroup{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 18px;
   
  }
  .new-logo {
    width: 142px !important;
    height: 37px !important;
}
  .hero-section h1 {
    font-size: 2rem !important;
    padding: 1rem 0.5rem !important;

}
.lead{
  font-size: 1.2rem !important;
  padding: 10px 0px !important;
}
.breadcrumb-item a{
  font-size: 0.8rem !important;
}
.call-btn {
  padding: 10px 32px !important;
  /* margin-bottom: 0.6rem; */
  margin-right: 1rem !important;
}

.plan-btn {
  padding: 10px 35px !important;
  /* margin-bottom: 0.6rem; */
}
.hero-section{
  padding-top:1.6rem !important;

}
.three-img {
  padding-top: 1rem !important;
}
.three-img .col-md-4:nth-child(2) img {
  /* transition-delay: 0.3s; */
  padding: 16px 0px;
}
.centered-section-2 {
  /* text-align: center; */
  margin-top: 4rem !important;
}
.centered-section-2 img {
  width: 57px !important;
  height: auto;
}
.centered-section-2 h2 {
  font-weight: 500;
  font-size: 1.5rem !important;
  line-height: 1.2 !important;
  margin-top: 2rem !important;
}

.four-cards {
  padding: 3rem 0.5rem !important;
}

.card {
  padding: 15px;
  height: 350px !important;
}
.card img {
  width: auto;
  height: 90px;
 
}
.card h5 {
  font-size: 1.6rem !important;
  
}
.centered-section-1 img {
  width: 140px !important;
  height: auto;
  margin-bottom: 33px;
}

.centered-section-1 h2 {
  
  font-size: 2rem !important;
  
}

.centered-section-1 p {
  
  font-size: 1.2rem !important;
  
}
.custom-card h2 {

  font-size: 1.5rem !important;

}
.custom-card {
   
    padding: 18px;

    height: 350px !important;
    margin: 0rem 0rem !important;
}
.custom-card img {
  margin-top: 2rem;
}

.centered-section img {
  margin-top: 2rem !important;
  width: 61px !important;
  height: auto;
}
.centered-section h2 {
  font-weight: 600;
  font-size: 1.5rem !important;
  line-height: 1.3;
}

  .list-icon {
    font-size: 14px;
    padding: 1px 6px;

}
.call-btnbottom{
  padding: 12px 55px !important;
}

.list-item {
  padding: 1px 9px;
  font-size: 15px !important;
}

.faq-heading {

  font-size: 1.7rem;
 
}
.toggle-icon {
  width: 31px;
  height: 25px;
background-color: white;
color: black;
  font-size: 19px;
}
.faq-question {

  font-size: 1.1rem;
  
}





}

@media (min-width: 426px) and (max-width: 768px) {
  .custom-card img{
    margin-top: 3rem;
  }
  .listgroup{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 7px;
   
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .custom-card img{
    margin-top: 3rem;
  }
  .custom-card h2 {

    font-size: 1.5rem !important;
   
    margin-bottom: 1rem;
}
}


@media (max-width: 768px) {
  footer .row {
    text-align: center !important;
  }

  footer .col-md-2,
  footer .col-md-4 {
    width: 100% !important;
    margin-bottom: 15px !important;
  }

  footer .list-unstyled {
    padding: 0 !important;
  }

  footer .list-unstyled li {
    display: block !important;
  }

  footer .col-md-4 a {
    display: inline-block !important;
    margin: 5px !important;
  }

  .ft-logo {
    margin: 0 auto !important;
    display: block !important;
  }
  footer.text-light.py-4 {
    padding-top: 50px !important;
}
}